home *** CD-ROM | disk | FTP | other *** search
/ NASA Climatology Interdisciplinary Data Collection / NASA Climatology Interdisciplinary Data Collection - Disc 4.iso / software / grads / lib / log.gs < prev    next >
Encoding:
Text File  |  1998-04-23  |  192 b   |  12 lines

  1. *
  2. *  Write a log of GrADS commands entered from the console.
  3. *
  4. while (1)
  5.   prompt 'ga> '
  6.   pull cmd
  7.   if (cmd='stop'); break; endif;
  8.   cmd
  9.   say result
  10.   rc = write ("grads.log",cmd)
  11. endwhile
  12.